home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
network
/
lattice
/
portlib.lzh
/
PORTLIB
/
CFSETSPE.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-05-22
|
184 b
|
13 lines
#include <sys/types.h>
#include <termios.h>
int
cfsetspeed (tt, baud)
struct termios *tt;
speed_t baud;
{
cfsetispeed (tt, baud);
cfsetospeed (tt, baud);
return 0;
}